{% extends "_layout.html" %} {% from "_macros.html" import summary_table, row %} {# Trial-end reminder. Stripe fires customer.subscription.trial_will_end roughly three days before the trial converts. We tell the customer the exact date + amount of the first charge and link to billing so they can update their card or cancel without surprise. #} {% block title %}Your {{ plan_name }} trial ends soon — {{ project_name }}{% endblock %} {% block preheader %}Your card will be charged {{ amount_formatted }} on {{ trial_end_human }}.{% endblock %} {% block heading %}Your trial ends on {{ trial_end_human }}.{% endblock %} {% block body %}

Just a heads-up - your {{ plan_name }} trial wraps up on {{ trial_end_human }} and we’ll charge {{ amount_formatted }} to the card on file. No action needed if you’re sticking around.

Want to cancel, switch tiers, or update the card before the charge? Manage everything from billing - it’s one click.

{% endblock %} {% block summary %} {% call summary_table() %} {{ row("Plan", plan_name) }} {{ row("First charge date", trial_end_human) }} {{ row("Amount", amount_formatted, emphasis=True) }} {% endcall %} {% endblock %} {% block cta_label %}Manage billing{% endblock %} {% block footer_note %}

Reply to this email if you have any questions before then.

{% endblock %}